home *** CD-ROM | disk | FTP | other *** search
/ Palm Z22 / Palm Z22 CD.iso / pc / PalmSoftware.pkg / Contents / Resources / InstallationCheck < prev    next >
Text File  |  2005-08-11  |  823b  |  36 lines

  1. #!/bin/sh
  2. # File name:  VolumeCheck
  3. # Description:  
  4. # Copyright 2004, palmOne , Inc.
  5. #  
  6. # Modification History:
  7. #    <1>  05/06/04   JMP   Implemented
  8. #                     
  9. # Argument 1 (the only argument to VolumeCheck) is the full path to a volume 
  10. #   in Installer's Target Select panel that a user can choose to
  11. #   install the software on.
  12. # The path is of the form "/" or /Volume/{volume name}
  13. #
  14. retval=0
  15. testval=`sw_vers | grep "ProductVersion" | awk ' {print ($2 > 10.1) ? "0" : "1" }' `
  16. #echo $testval
  17. if  test $testval = "1"
  18.     then
  19.         let retval=(1<<5)            
  20. #echo "$retval"
  21.         let retval=(retval|(1<<6))        
  22. #echo "$retval"
  23.         let retval=(retval|2)
  24. #echo "$retval"
  25.  fi
  26.  
  27. # Sets the message value bits (bits 0 to 4) to 16,
  28. # specifying the message associated with "16" in the strings file.
  29. #  
  30. #echo "$retval"
  31. exit $retval
  32.